home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Freelog 15
/
FREELOG 15.ISO
/
WebMaster
/
Perl
/
PERL5106.ZIP
/
perl5
/
Lib
/
tainted.pl
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1995-09-18
|
173 b
|
10 lines
# This subroutine returns true if its argument is tainted, false otherwise.
sub tainted {
local($@);
eval { kill 0 * $_[0] };
$@ =~ /^Insecure/;
}
1;